SearchInContentRequest

data class SearchInContentRequest(scriptId: ScriptId, query: String, caseSensitive: Boolean?, isRegex: Boolean?)

Represents request frame that can be used with Debugger#searchInContent operation call.

Searches for given string in script content.

See also

Constructors

SearchInContentRequest
Link copied to clipboard
fun SearchInContentRequest(scriptId: ScriptId, query: String, caseSensitive: Boolean? = null, isRegex: Boolean? = null)

Properties

caseSensitive
Link copied to clipboard
val caseSensitive: Boolean? = null
If true, search is case sensitive.
isRegex
Link copied to clipboard
val isRegex: Boolean? = null
If true, treats string parameter as regex.
query
Link copied to clipboard
val query: String
String to search for.
scriptId
Link copied to clipboard
val scriptId: ScriptId
Id of the script to search in.

Sources

jvm source
Link copied to clipboard